home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Select (Limited Edition)
/
Computer Select.iso
/
pcc
/
v04n12
/
batch2.exe
/
XTEST.BAT
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1991-10-12
|
236 b
|
13 lines
@ECHO OFF
REM This is XTEST.BAT
XCOPY *.XYZ B: > NUL
IF ERRORLEVEL 2 GOTO END
IF ERRORLEVEL 1 GOTO NOFILES
IF ERRORLEVEL 0 GOTO SUCCESS
:NOFILES
ECHO No *.XYZ files found
GOTO END
:SUCCESS
ECHO *.XYZ files copied to B:
:END